const github.com/klauspost/compress/zstd.maxMatchLength
16 uses
github.com/klauspost/compress/zstd (current package)
enc_best.go#L237: for offset > tMin && s > nextEmit && src[offset-1] == src[s-1] && l < maxMatchLength {
enc_better.go#L194: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L253: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L478: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
enc_better.go#L714: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L775: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L994: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
enc_dfast.go#L153: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_dfast.go#L267: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
enc_dfast.go#L801: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_dfast.go#L916: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
enc_fast.go#L18: maxMatchLength = 131074
enc_fast.go#L147: for repIndex > sMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch {
enc_fast.go#L224: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
enc_fast.go#L647: for repIndex > sMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch {
enc_fast.go#L724: for t > tMin && s > nextEmit && src[t-1] == src[s-1] && l < maxMatchLength {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |